home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / t3_1 / risc_src.lha / risc_sources / mipsco / clean < prev    next >
Encoding:
Text File  |  1990-10-16  |  230 b   |  12 lines

  1. #! /bin/csh -f
  2. # Remove big-endian MIPS def/info/noise/object files from the source tree
  3.  
  4. cd ..
  5. set top = `pwd`
  6. set dirs = (`find . -type d -print`)
  7. set nonomatch
  8.  
  9. foreach d ($dirs)
  10.   echo $d; cd $d; rm -f *.mb[dino]; cd $top
  11. end
  12.